summaryrefslogtreecommitdiff
path: root/ui/routes/(app)/ch/[channel]
diff options
context:
space:
mode:
authorKit La Touche <kit@transneptune.net>2024-11-03 21:43:00 -0500
committerKit La Touche <kit@transneptune.net>2024-11-03 21:43:00 -0500
commitf38881f3253b3a128154ffd95655859e3dc629dc (patch)
treee0b1eea57aa8b431aa83e2efc4577c12d3cc2b29 /ui/routes/(app)/ch/[channel]
parent032bd28ee996e076bc8341704f74f062a2672645 (diff)
Run spaces-style prettier formatting
Diffstat (limited to 'ui/routes/(app)/ch/[channel]')
-rw-r--r--ui/routes/(app)/ch/[channel]/+page.svelte24
1 files changed, 12 insertions, 12 deletions
diff --git a/ui/routes/(app)/ch/[channel]/+page.svelte b/ui/routes/(app)/ch/[channel]/+page.svelte
index a5836fc..49c1c29 100644
--- a/ui/routes/(app)/ch/[channel]/+page.svelte
+++ b/ui/routes/(app)/ch/[channel]/+page.svelte
@@ -1,23 +1,23 @@
<script>
- import { page } from '$app/stores';
- import ActiveChannel from '$lib/components/ActiveChannel.svelte';
- import MessageInput from '$lib/components/MessageInput.svelte';
+ import { page } from '$app/stores';
+ import ActiveChannel from '$lib/components/ActiveChannel.svelte';
+ import MessageInput from '$lib/components/MessageInput.svelte';
- let channel = $derived($page.params.channel);
+ let channel = $derived($page.params.channel);
</script>
<div class="active-channel">
- <ActiveChannel {channel} />
+ <ActiveChannel {channel} />
</div>
<div class="create-message max-h-full">
- <MessageInput {channel} />
+ <MessageInput {channel} />
</div>
<style>
- .active-channel {
- height: calc(
- 100vh - var(--app-bar-height) - var(--interface-padding) - var(--input-row-height)
- );
- overflow: auto;
- }
+ .active-channel {
+ height: calc(
+ 100vh - var(--app-bar-height) - var(--interface-padding) - var(--input-row-height)
+ );
+ overflow: auto;
+ }
</style>